home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / rendering / real3d / shelly / shelly.h < prev    next >
Encoding:
C/C++ Source or Header  |  1978-11-24  |  315 b   |  22 lines

  1. /* Header for Shelly - the famous ShellShapeGenerator */
  2.  
  3. #define POV 1
  4. #define RPL 2
  5.  
  6. struct punkt 
  7. {
  8.  struct punkt *next;
  9.  double x,y,z;
  10. };
  11.  
  12.  
  13. struct ShellyArguments
  14. {
  15.  double alpha,beta,phi,my,omega,omin,omax,smin,smax,A,a,b,P,W1,W2,N,L;
  16.  double od, sd;
  17.  int output;
  18. };
  19.  
  20. #define pi 3.141592654
  21. #define laenge 255
  22.